home *** CD-ROM | disk | FTP | other *** search
/ Champak 114 / Vol 114.iso / games / way_of_t.swf / scripts / DefineSprite_223 / frame_1 / DoAction.as
Encoding:
Text File  |  2010-08-12  |  293 b   |  22 lines

  1. if(_parent.direction == "left")
  2. {
  3.    moveme = -9;
  4. }
  5. else
  6. {
  7.    moveme = 9;
  8. }
  9. if(Key.isDown(Key.RIGHT) && _parent._x < 475)
  10. {
  11.    bob = "standard";
  12. }
  13. else if(Key.isDown(Key.LEFT) && 75 < _parent._x)
  14. {
  15.    bob = "standard";
  16. }
  17. else
  18. {
  19.    bob = "straight up";
  20. }
  21. gotoAndPlay(bob);
  22.